﻿/* Button Style (based on your site theme) */
.MyTheme-btn {
    background-color: #241c59;
    color: white;
    padding: 8px 5px;
    border: none;
    width: 85px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

  .MyTheme-btn:hover {
        background-color: #808080;
    }

/* Modal Overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* dim background */
    backdrop-filter: blur(2px);
}

/* Modal Content Box */
.modal-content {
    background-color: #fff;
    color: #333;
    margin: 15% auto;
    padding: 25px;
    border-radius: 12px;
    width: 400px;
    max-width: 40%;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    text-align: center;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
}

.modal-heading {
    background-color: #241c59;
    color: #fff !important;
    padding: 5px;
    border-radius: 7px;
    margin-bottom: 18px;
}


    .modal-content h3 {
        color: #d10000;
        margin-top: 0;
    }

    .modal-content p {
        font-size: 16px;
    }

/* Close button */
.close-btn {
    position: absolute;
    top: -7px;
    right: 3px;
    color: #0e0b23;
    font-size: 35px; 
    cursor: pointer;
    border-radius: 10%; 
    padding: 3px;
}

    .close-btn:hover 
    {
      color: #a8a5c7;
    }
